home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / SyncBack / VirtualBox_1.5.4_Win_x86.msi / vboxguest / driver / VBoxGuest / VBoxMouse.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2007-12-07  |  1.8 KB  |  64 lines

  1. ;
  2. ; INF file for installing the VirtualBox Guest Mouse
  3. ; (driver for Windows 2000 and later).
  4. ;
  5. ;  Copyright (C) 2006-2007 innotek GmbH
  6. ;  This file is part of VirtualBox Open Source Edition (OSE), as
  7. ;  available from http://www.virtualbox.org. This file is free software;
  8. ;  you can redistribute it and/or modify it under the terms of the GNU
  9. ;  General Public License as published by the Free Software Foundation,
  10. ;  in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
  11. ;  distribution. VirtualBox OSE is distributed in the hope that it will
  12. ;  be useful, but WITHOUT ANY WARRANTY of any kind.
  13.  
  14. [Version]
  15. Signature="$Windows NT$"
  16. ;cat CatalogFile=VBoxMouse.cat
  17.  
  18. [SourceDisksNames]
  19. 1 = %VBoxMouse.MediaDesc%
  20.  
  21. [SourceDisksFiles]
  22. VBoxMouse.sys = 1
  23.  
  24. [DestinationDirs]
  25. DefaultDestDir = 12    ; DIRID_DRIVERS
  26.  
  27.  
  28. [DefaultInstall]
  29. ;
  30. ; DefaultInstall section is used to install the class filter driver.
  31. ;
  32. CopyFiles = @VBoxMouse.sys
  33. AddReg = VBoxMouse_AddReg
  34.  
  35. [VBoxMouse_AddReg]
  36. HKLM, System\CurrentControlSet\Control\Class\{4D36E96F-E325-11CE-BFC1-08002BE10318}, UpperFilters, 0x00010000, "VBoxMouse", "mouclass"
  37.  
  38.  
  39. [DefaultInstall.Services]
  40. ;
  41. ; Services section is required for installation of drivers on NT-based operating systems.
  42. ;
  43. AddService = VBoxMouse, , VBoxMouse_Service_Inst
  44.  
  45.  
  46. [VBoxMouse_Service_Inst]
  47. DisplayName    = %VBoxMouse.SvcDesc%
  48. ServiceType    = %SERVICE_KERNEL_DRIVER%
  49. StartType      = %SERVICE_DEMAND_START%
  50. ErrorControl   = %SERVICE_ERROR_IGNORE%
  51. ServiceBinary  = %12%\VBoxMouse.sys
  52.  
  53.  
  54. [Strings]
  55. VBoxMouse.SvcDesc    = "VirtualBox Guest Mouse Service"
  56. VBoxMouse.MediaDesc     = "VirtualBox Guest Mouse Driver Installation Media"
  57.  
  58.  
  59. ; Useful constants
  60. SERVICE_KERNEL_DRIVER = 1
  61. SERVICE_DEMAND_START  = 3
  62. SERVICE_ERROR_IGNORE  = 0
  63.